home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cuj9204 / 1004094a < prev    next >
Text File  |  1992-06-02  |  148b  |  11 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. #define STACK_SIZE 4
  5.  
  6. static int stack[STACK_SIZE];
  7.  
  8. static size_t stack_ptr1 = 0;
  9. static size_t stack_ptr2 = STACK_SIZE - 1;
  10.  
  11.